Npm Run Build无法打包的可能原因

npm run build报错

结果报错npm ERR! missing script: build,后来发现package.json中scripts参数为

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"scripts": {
"dev": "vue-cli-service serve",

"build:prod": "vue-cli-service build", #这里!!!

"build:stage": "vue-cli-service build --mode staging",

"preview": "node build/index.js --preview",

"lint": "eslint --ext .js,.vue src",

"test:unit": "jest --clearCache && vue-cli-service test:unit",

"test:ci": "npm run lint && npm run test:unit",

"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml"

},

 

 

所以正确的命令应该为

1
npm run build:prod --report

注意

还有就是注意node 的版本,现在node支持npm的版本最高是12,注意不要使用超过node12版本的环境进行打包

继开 wechat
欢迎加我的微信,共同交流技术